From 7ce7e5503f791c66ec174ced8c712dcbae50ff01 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Tue, 31 Jul 2018 07:24:45 +0200 Subject: [PATCH] colorpicker: Fix gcc warning --- gtk/gtkcolorpicker.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkcolorpicker.c b/gtk/gtkcolorpicker.c index d57ffe016e..16055e144c 100644 --- a/gtk/gtkcolorpicker.c +++ b/gtk/gtkcolorpicker.c @@ -59,7 +59,7 @@ gtk_color_picker_new (void) picker = gtk_color_picker_shell_new (); if (picker) - g_debug ("Using %s for picking colors", g_type_name_from_instance (picker)); + g_debug ("Using %s for picking colors", G_OBJECT_TYPE_NAME (picker)); else g_debug ("No suitable GtkColorPicker implementation\n"); -- 2.30.2